home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / packet / terminal / tsth_140 / md2code.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-30  |  5.9 KB  |  176 lines

  1.  
  2. /* MD2.C - RSA Data Security, Inc., MD2 message-digest algorithm */
  3.  
  4. #include <mem.h>
  5. #include "md2code.h"
  6.  
  7. #define MD2_memcpy memcpy
  8. #define MD2_memset memset
  9.  
  10. void MD2Transform(unsigned char [16], unsigned char [16], unsigned char [16]);
  11.  
  12. /* Permutation of 0..255 constructed from the digits of pi. It gives a
  13.    "random" nonlinear byte substitution operation.
  14.  */
  15. static unsigned char PI_SUBST[256] = {
  16.   41, 46, 67, 201, 162, 216, 124, 1, 61, 54, 84, 161, 236, 240, 6,
  17.   19, 98, 167, 5, 243, 192, 199, 115, 140, 152, 147, 43, 217, 188,
  18.   76, 130, 202, 30, 155, 87, 60, 253, 212, 224, 22, 103, 66, 111, 24,
  19.   138, 23, 229, 18, 190, 78, 196, 214, 218, 158, 222, 73, 160, 251,
  20.   245, 142, 187, 47, 238, 122, 169, 104, 121, 145, 21, 178, 7, 63,
  21.   148, 194, 16, 137, 11, 34, 95, 33, 128, 127, 93, 154, 90, 144, 50,
  22.   39, 53, 62, 204, 231, 191, 247, 151, 3, 255, 25, 48, 179, 72, 165,
  23.   181, 209, 215, 94, 146, 42, 172, 86, 170, 198, 79, 184, 56, 210,
  24.   150, 164, 125, 182, 118, 252, 107, 226, 156, 116, 4, 241, 69, 157,
  25.   112, 89, 100, 113, 135, 32, 134, 91, 207, 101, 230, 45, 168, 2, 27,
  26.   96, 37, 173, 174, 176, 185, 246, 28, 70, 97, 105, 52, 64, 126, 15,
  27.   85, 71, 163, 35, 221, 81, 175, 58, 195, 92, 249, 206, 186, 197,
  28.   234, 38, 44, 83, 13, 110, 133, 40, 132, 9, 211, 223, 205, 244, 65,
  29.   129, 77, 82, 106, 220, 55, 200, 108, 193, 171, 250, 36, 225, 123,
  30.   8, 12, 189, 177, 74, 120, 136, 149, 139, 227, 99, 232, 109, 233,
  31.   203, 213, 254, 59, 0, 29, 57, 242, 239, 183, 14, 102, 88, 208, 228,
  32.   166, 119, 114, 248, 235, 117, 75, 10, 49, 68, 80, 180, 143, 237,
  33.   31, 26, 219, 153, 141, 51, 159, 17, 131, 20
  34. };
  35.  
  36. static unsigned char *PADDING[] = {
  37.   (unsigned char *)"",
  38.   (unsigned char *)"\001",
  39.   (unsigned char *)"\002\002",
  40.   (unsigned char *)"\003\003\003",
  41.   (unsigned char *)"\004\004\004\004",
  42.   (unsigned char *)"\005\005\005\005\005",
  43.   (unsigned char *)"\006\006\006\006\006\006",
  44.   (unsigned char *)"\007\007\007\007\007\007\007",
  45.   (unsigned char *)"\010\010\010\010\010\010\010\010",
  46.   (unsigned char *)"\011\011\011\011\011\011\011\011\011",
  47.   (unsigned char *)"\012\012\012\012\012\012\012\012\012\012",
  48.   (unsigned char *)"\013\013\013\013\013\013\013\013\013\013\013",
  49.   (unsigned char *)"\014\014\014\014\014\014\014\014\014\014\014\014",
  50.   (unsigned char *)
  51.     "\015\015\015\015\015\015\015\015\015\015\015\015\015",
  52.   (unsigned char *)
  53.     "\016\016\016\016\016\016\016\016\016\016\016\016\016\016",
  54.   (unsigned char *)
  55.     "\017\017\017\017\017\017\017\017\017\017\017\017\017\017\017",
  56.   (unsigned char *)
  57.     "\020\020\020\020\020\020\020\020\020\020\020\020\020\020\020\020"
  58. };
  59.  
  60. /* MD2 initialization. Begins an MD2 operation, writing a new context.
  61.  */
  62. void MD2Init (context)
  63. MD2_CTX *context;                                        /* context */
  64. {
  65.   context->count = 0;
  66.   MD2_memset ((unsigned char *)context->state, 0, sizeof (context->state));
  67.   MD2_memset
  68.     ((unsigned char *)context->checksum, 0, sizeof (context->checksum));
  69. }
  70.  
  71. /* MD2 block update operation. Continues an MD2 message-digest
  72.      operation, processing another message block, and updating the
  73.      context.
  74.  */
  75. void MD2Update (context, input, inputLen)
  76. MD2_CTX *context;                                        /* context */
  77. unsigned char *input;                                /* input block */
  78. unsigned int inputLen;                     /* length of input block */
  79. {
  80.   unsigned int i, index, partLen;
  81.  
  82.   /* Update number of bytes mod 16 */
  83.   index = context->count;
  84.   context->count = (index + inputLen) & 0xf;
  85.  
  86.   partLen = 16 - index;
  87.  
  88.   /* Transform as many times as possible.
  89.     */
  90.   if (inputLen >= partLen) {
  91.     MD2_memcpy
  92.       ((unsigned char *)&context->buffer[index], (unsigned char *)input, partLen);
  93.     MD2Transform (context->state, context->checksum, context->buffer);
  94.  
  95.     for (i = partLen; i + 15 < inputLen; i += 16)
  96.       MD2Transform (context->state, context->checksum, &input[i]);
  97.  
  98.     index = 0;
  99.   }
  100.   else
  101.     i = 0;
  102.  
  103.   /* Buffer remaining input */
  104.   MD2_memcpy
  105.     ((unsigned char *)&context->buffer[index], (unsigned char *)&input[i],
  106.      inputLen-i);
  107. }
  108.  
  109. /* MD2 finalization. Ends an MD2 message-digest operation, writing the
  110.      message digest and zeroizing the context.
  111.  */
  112. void MD2Final (digest, context)
  113. unsigned char digest[16];                         /* message digest */
  114. MD2_CTX *context;                                        /* context */
  115. {
  116.   unsigned int index, padLen;
  117.  
  118.   /* Pad out to multiple of 16.
  119.    */
  120.   index = context->count;
  121.   padLen = 16 - index;
  122.   MD2Update (context, PADDING[padLen], padLen);
  123.  
  124.   /* Extend with checksum */
  125.   MD2Update (context, context->checksum, 16);
  126.  
  127.   /* Store state in digest */
  128.   MD2_memcpy ((unsigned char *)digest, (unsigned char *)context->state, 16);
  129.  
  130.   /* Zeroize sensitive information.
  131.    */
  132.   MD2_memset ((unsigned char *)context, 0, sizeof (*context));
  133. }
  134.  
  135. /* MD2 basic transformation. Transforms state and updates checksum
  136.      based on block.
  137.  */
  138. static void MD2Transform (state, checksum, block)
  139. unsigned char state[16];
  140. unsigned char checksum[16];
  141. unsigned char block[16];
  142. {
  143.   unsigned int i, j, t;
  144.   unsigned char x[48];
  145.  
  146.   /* Form encryption block from state, block, state ^ block.
  147.    */
  148.   MD2_memcpy ((unsigned char *)x, (unsigned char *)state, 16);
  149.   MD2_memcpy ((unsigned char *)x+16, (unsigned char *)block, 16);
  150.   for (i = 0; i < 16; i++)
  151.     x[i+32] = state[i] ^ block[i];
  152.  
  153.   /* Encrypt block (18 rounds).
  154.    */
  155.   t = 0;
  156.   for (i = 0; i < 18; i++) {
  157.     for (j = 0; j < 48; j++)
  158.       t = x[j] ^= PI_SUBST[t];
  159.     t = (t + i) & 0xff;
  160.   }
  161.  
  162.   /* Save new state */
  163.   MD2_memcpy ((unsigned char *)state, (unsigned char *)x, 16);
  164.  
  165.   /* Update checksum.
  166.    */
  167.   t = checksum[15];
  168.   for (i = 0; i < 16; i++)
  169.     t = checksum[i] ^= PI_SUBST[block[i] ^ t];
  170.  
  171.   /* Zeroize sensitive information.
  172.    */
  173.   MD2_memset ((unsigned char *)x, 0, sizeof (x));
  174. }
  175.  
  176.